home *** CD-ROM | disk | FTP | other *** search
- on initSprites
- repeat with x = 1 to 48
- puppetSprite(x, 0)
- set the visible of sprite x to 1
- end repeat
- end
-
- on pupetize start, end
- repeat with i = start to end
- puppetSprite(i, 1)
- end repeat
- end
-
- on dePupetize start, end
- repeat with i = start to end
- puppetSprite(i, 0)
- end repeat
- end
-
- on exitFrame
- if rollOver(3) then
- go(the frame)
- else
- initSprites()
- go("choix")
- end if
- end
-